home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.480 < prev    next >
Text File  |  1996-02-12  |  28KB  |  712 lines

  1. Frequently Asked Questions (FAQS);faqs.480
  2.  
  3.  
  4.  
  5. ==> series/series.11.s <==
  6. V.  Colors.
  7.  
  8. ==> series/series.12.p <==
  9. A, T, G, C, L, ?
  10.  
  11. ==> series/series.12.s <==
  12. V, L, S, S, C, A, P.  Zodiacal signs.
  13.  
  14. ==> series/series.13.p <==
  15. M, V, E, M, J, S, ?
  16.  
  17. ==> series/series.13.s <==
  18. U, N, P.  Names of the Planets.
  19.  
  20. ==> series/series.14.p <==
  21. A, B, D, O, P, ?
  22.  
  23. ==> series/series.14.s <==
  24. Q, R.  Only letters with an inside as printed.
  25.  
  26. ==> series/series.14a.p <==
  27. A, B, D, E, G, O, P, ?
  28.  
  29. ==> series/series.14a.s <==
  30. Q.  Letters with cursive insides.
  31.  
  32. ==> series/series.15.p <==
  33. A, E, F, H, I, ?
  34.  
  35. ==> series/series.15.s <==
  36. L, M, N, O, S, U.  Letters whose English names start with vowels.
  37.  
  38. ==> series/series.16.p <==
  39. A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, X, Y?
  40.  
  41. ==> series/series.16.s <==
  42. Z.  Letters whose English names have one syllable.
  43.  
  44. ==> series/series.17.p <==
  45. T, P, O, F, O, F, N, T, S, F, T, F, E, N, S, N?
  46.  
  47. ==> series/series.17.s <==
  48. T, T, T, E, T, E.  Digits of Pi.
  49.  
  50. ==> series/series.18.p <==
  51. 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 24, ___ , 100, 121, 10000
  52.  
  53. ==> series/series.18.s <==
  54.  10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 24, 31 , 100, 121, 10000
  55.  
  56. Sixteen in base n for n=16, 15, ..., 2.
  57.  
  58. ==> series/series.19.p <==
  59. 1 01 01011 0101101011011 0101101011011010110101101101011011 etc.
  60.  
  61. Each string is formed from the previous string by substituting '01' for '1'
  62. and '011' for '0' simultaneously at each occurance.
  63. Notice that each string is an initial substring of the previous string so
  64. that we may consider them all as initial substrings of an infinite string.
  65. The puzzle then is, given n, determine if the nth digit is 0 or 1 without
  66. having to construct all the previous digits.  That is, give a non-recursive
  67. formula for the nth digit.
  68.  
  69. ==> series/series.19.s <==
  70. Let G equal the limit string generated by the above process and define
  71. the string F by
  72.  
  73. F[0] = "0",
  74. F[n] = "1" if n = floor(phi*m) for some positive integer m,
  75. F[n] = "0" if n = floor(phi^2*m) for some positive integer m,
  76.  
  77. where floor(x) is the greatest integer =< x and phi = (1 + \/5)/2;
  78. I claim that F = G.
  79.  
  80.  
  81. I will try to motivate my solution.  Let g[0]="0" and define g[n+1]
  82. to be the string that results from replacing "0" in g[n] with "01"
  83. and "1" with "011"; furthermore, let s(n) and t(n) be the number of
  84. "0"'s and "1"'s in g[n], respectively.  Note that we have the
  85. following recursive formulas : s(n+1) = s(n) + t(n) and t(n+1) =
  86. s(n) + 2t(n).  I claim that s(n) = Fib(2n-1) and t(n) = Fib(2n),
  87. where Fib(m) is the mth Fibonacci number (defined by Fib(-1) = 1,
  88. Fib(0) = 0, Fib(n+1) = Fib(n) + Fib(n-1) for n>=0); this is easily
  89. established by induction.  Now noting that Fib(2n)/Fib(2n-1) -> phi
  90. as n -> infinity, we see that if the density of the "0"'s and "1"'s
  91. exists, they must be be 1/phi^2 and 1/phi, respectively.  What is
  92. the simplest generating sequence which has this property?  Answer:
  93. the one given above.
  94.  
  95.  
  96. Proof:  We start with
  97.  
  98. Beatty's Theorem: if a and b are positive irrational numbers such
  99. that 1/a + 1/b = 1, then every positive integer has a representation
  100. of the form floor(am) or floor(bm) (m a positive integer), and this
  101. representation is unique.
  102.  
  103. This shows that F is well-defined.  I now claim that
  104.  
  105. Lemma: If S(n) and T(n) (yes, two more functions; apparently today's
  106. the day that functions have their picnic) represent the number of
  107. "0"'s and "1"'s in the initial string of F of length n, then S(n)
  108. = ceil(n/phi^2) and T(n) = floor(n/phi) (ceil(x) is the smallest
  109. integer >= x).
  110.  
  111. Proof of lemma: using the identity phi^2 = phi + 1 we see that S(n)
  112. + T(n) = n, hence for a given n either S(n) = S(n-1) + 1 or T(n) =
  113. T(n-1) + 1.  Now note that if F[n-1]="1" ==> n-1 = floor(phi*m) for
  114. some positive integer m and since phi*m-1 < floor(phi*m) < phi*m ==>
  115. m-1/phi < (n-1)/phi < m ==> T(n) = T(n-1) + 1.   To finish, note that
  116. if F[n-1]="0" ==> n-1 = floor(phi^2*m) for some positive integer m
  117. and since phi^2*m-1 < floor(phi^2*m) < phi^2*m ==> m-1/phi^2 <
  118. (n-1)/phi^2 < m ==> S(n) = S(n-1) + 1.  Q.E.D.
  119.  
  120. I will now show that F is invariant under the operation of replacing
  121. "0" with "01" and "1" with "011"; it will then follow that F=G.
  122. Note that this is equivalent to showing that F[2S(n) + 3T(n)]
  123. = "0", F[2S(n) + 3T(n) + 1] = "1", and that if n = [phi*m] for some
  124. positive integer m, then F[2S(n) + 3T(n) + 2] = "1".  One could
  125. waste hours trying to prove some fiendish identities; watch how
  126. I sidestep this trap.  For the first part, note that by the above
  127. lemma F[2S(n) + 3T(n)] = F[2*ceil(n/phi^2) + 3*floor(n/phi)] =
  128. F[2n + floor(n/phi)] = F[2n + floor(n*phi-n)] = F[floor(phi*n+n)]
  129. = F[floor(phi^2*n)] ==> F[2S(n) + 3T(n)] = "0".  For the second, it
  130. is easy to see that since phi^2>2, if F[m]="0" ==> F[m]="1" hence
  131. the first part implies the second part.  Finally, note that if n =
  132. [phi*m] for some positive integer m, then F[2S(n) + 3T(n) + 3] =
  133. F[2S(n+1) + 3T(n+1)] = "0", hence by the same reasoning as above
  134. F[2S(n) + 3T(n) + 2] = "1".
  135.  
  136. Q.E.D.
  137.  
  138.     -- clong@remus.rutgers.edu (Chris Long)
  139.  
  140. ==> series/series.20.p <==
  141. 1 2 5 16 64 312 1812 12288
  142.  
  143. ==> series/series.20.s <==
  144. ANSWER: 95616
  145.     The sum of factorial(k)*factorial(n-k) for k=0,...,n.
  146.  
  147. ==> series/series.21.p <==
  148. 5, 6, 5, 6, 5, 5, 7, 5, ?
  149.  
  150. ==> series/series.21.s <==
  151. The number of letters in the ordinal numbers.
  152.  
  153. First   5
  154. Second  6
  155. Third   5
  156. Fourth  6
  157. Fifth   5
  158. Sixth   5
  159. Seventh 7
  160. Eighth  6
  161. Ninth   5
  162. etc.
  163.  
  164. ==> series/series.22.p <==
  165. 3 1 1 0 3 7 5 5 2 ?
  166.  
  167. ==> series/series.22.s <==
  168. ANSWER: 4
  169.     The digits of pi expressed in base eight.
  170.  
  171. ==> series/series.23.p <==
  172. 22 22 30 13 13 16 16 28 28 11 ?
  173.  
  174. ==> series/series.23.s <==
  175. ANSWER: 15
  176.     The birthdays of the Presidents of the United States.
  177.  
  178.  
  179. ==> series/series.24.p <==
  180. What is the next letter in the sequence: W, I, T, N, L, I, T?
  181.  
  182. ==> series/series.24.s <==
  183. S.  First letters of words in question.
  184.  
  185. ==> series/series.25.p <==
  186. 1 3 4 9 10 12 13 27 28 30 31 36 37 39 40 ?
  187.  
  188. ==> series/series.25.s <==
  189. 1 3 4 9 10 12 13 27 28 30 31 36 37 39 40 ...
  190. i in binary, treated as a base 3 number and converted to decimal.
  191.  
  192. ==> series/series.26.p <==
  193. 1 3 2 6 7 5 4 12 13 15 14 10 11 9 8 24 25 27 26 ?
  194.  
  195. ==> series/series.26.s <==
  196. 1 3 2 6 7 5 4 12 13 15 14 10 11 9 8 24 25 27 26 ...
  197. Take i in binary, for each 1 bit (in i, not changed) flip the next bit.
  198. This can also be phrased in reversing sequences of numbers.
  199. More simply, just the integers in reflective-Gray-code order.
  200.  
  201. ==> series/series.27.p <==
  202. 0 1 1 2 1 2 1 3 2 2 1 3 1 2 2 4 1 3 1 3 2 2 1 4 2 ?
  203.  
  204. ==> series/series.27.s <==
  205. 0 1 1 2 1 2 1 3 2 2 1 3 1 2 2 4 1 3 1 3 2 2 1 4 2 ...
  206. Number of factors in prime factorization of i.
  207.  
  208. ==> series/series.28.p <==
  209. 0 2 3 4 5 5 7 6 6 7 11 7 13 9 8 8 17 8 19 9 10 13 23 9 10 ?
  210.  
  211. ==> series/series.28.s <==
  212. 0 2 3 4 5 5 7 6 6 7 11 7 13 9 8 8 17 8 19 9 10 13 23 9 10 ...
  213. Sum of factors in prime factorization of i.
  214.  
  215. ==> series/series.29.p <==
  216. 1 1 2 1 2 2 3 1 2 2 3 2 3 3 4 1 2 2 3 2 3 3 4 2 3 3 4 3 4 ?
  217.  
  218. ==> series/series.29.s <==
  219. 1 1 2 1 2 2 3 1 2 2 3 2 3 3 4 1 2 2 3 2 3 3 4 2 3 3 4 3 4 ...
  220. The number of 1s in the binary expansion of n.
  221.  
  222. ==> series/series.30.p <==
  223. I I T Y W I M W Y B M A D
  224.  
  225. ==> series/series.30.s <==
  226. ? (first letters of "If I tell you what it means will you buy me a drink?")
  227.  
  228. ==> series/series.31.p <==
  229. 6 2 5 5 4 5 6 3 7
  230.  
  231. ==> series/series.31.s <==
  232. 6. The number of segments on a standard calculator display it takes
  233. to represent the digits starting with 0.
  234.   _       _   _       _   _   _   _   _
  235.  | |   |  _|  _| |_| |_  |_    | |_| |_|
  236.  |_|   | |_   _|   |  _| |_|   | |_|  _|
  237.  
  238. ==> series/series.32.p <==
  239. 0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0 1
  240.  
  241. ==> series/series.32.s <==
  242. 0 -> 1   01 -> 10   0110 -> 1001   01101001 ->  10010110
  243. Recursively append the inverse.
  244.  
  245. This sequence is known as the Morse-Thue sequence.  It can be defined
  246. non-recursively as the nth term is the mod 2 count of 1s in n written
  247. in binary:
  248.         0->0 1->1 10->1 11->0 100->1 101->0 110->0 111->1 etc.
  249.  
  250. Reference:
  251.     Dekking, et. al., "Folds! I,II,III"
  252.     The Mathematical Intelligencer, v4,#3,#4,#4.
  253.  
  254. ==> series/series.33.p <==
  255. 2 12 360 75600
  256.  
  257. ==> series/series.33.s <==
  258. 2         = 2^1
  259. 12        = 2^2 * 3^1
  260. 360       = 2^3 * 3^2 * 5^1
  261. 75600     = 2^4 * 3^3 * 5^2 * 7^1
  262. 174636000 = 2^5 * 3^4 * 5^3 * 7^2 * 11^1
  263.  
  264. ==> series/series.34.p <==
  265. 3 5 4 4 3 5 5 4 3
  266.  
  267. ==> series/series.34.s <==
  268. The number of letters in the English words for the counting numbers.
  269.  
  270. ==> series/series.35.p <==
  271. 1 2 3 2 1 2 3 4 2 1 2 3 4 2 2 3
  272.  
  273. ==> series/series.35.s <==
  274. The number of letters in the Roman numeral representation of the numbers.
  275.  
  276. ==> trivia/area.codes.p <==
  277. When looking at a map of the distribution of telephone area codes
  278. for North America, it appears that they are randomly distributed.
  279. I am doubtful that this is the case, however.  Does anyone know
  280. how the area codes were/are chosen?
  281.  
  282. ==> trivia/area.codes.s <==
  283. Originally, back in the middle 1950's when direct dialing of long
  284. distance calls first became possible, the idea was to assign area codes
  285. with the 'shortest' dialing time required to the larger cities.
  286.  
  287. Touch tone dialing was very rare. Most dialed calls were with 'rotary'
  288. dials.  Area codes like 212, 213, 312 and 313 took very little time to
  289. dial (while waiting for the dial to return to normal) as opposed, for
  290. example, to 809, 908, 709, etc ...
  291.  
  292. So the 'quickest to dial' area codes were assigned to the places which
  293. would probably receive the most direct dialed calls, i.e. New York City
  294. got 212, Chicago got 312, Los Angeles got 213, etc ... Washington, DC got
  295. 202, which is a little longer to dial than 212, but much shorter than
  296. others.
  297.  
  298. In order of size and estimated amount of telephone traffic, the numbers
  299. got larger:  San Fransisco got 415, which is sort of in the middle, and
  300. Miami got 305, etc.  At the other end of the spectrum came places like
  301. Hawaii (it only got statehood as of about 1958) with 808,  Puerto Rico
  302. with 809, Newfounland with 709, etc.
  303.  
  304. The original (and still in use until about 1993) plan is that area codes
  305. have a certain construction to the numbers:
  306.  
  307. The first digit will be 2 through 9.
  308. The second digit will always be 0 or 1.
  309. The third digit will be 1 through 9.
  310.  
  311. Three digit numbers with two zeros will be special codes, ie. 700, 800 or
  312. 900.  Three digit numbers with two ones are for special local codes,
  313. i.e. 411 for local directory assistance, 611 for repairs, etc.
  314.  
  315. Three digit codes ending in '10', i.e. 410, 510, 610, 710, 810, 910 were
  316. 'area codes' for the AT&T (and later on Western Union) TWX network. This
  317. rule has been mostly abolished, however 610 is still Canadian TWX, and
  318. 910 is still used by Western Union TWX. Gradually the '10' codes are
  319. being converted to regular area codes.
  320.  
  321. We are running out of possible combinations of numbers using the above
  322. rules, and it is estimated that beginning in 1993-94, area codes will
  323. begin looking like regular telephone prefix codes, with numbers other than
  324. 0 or 1 as the second digit.
  325.  
  326. I hope this gives you a basic  idea. There were other rules at one time
  327. such as not having an area code with zero in the second digit in the same
  328. state as a code with one in the second digit, etc .. but after the initial
  329. assignment of numbers back almost forty years ago, some of those rules
  330. were dropped when it became apparent they were not flexible enough.
  331.  
  332.  
  333. Patrick Townson
  334. TELECOM Digest Moderator
  335.  
  336. --
  337. Patrick Townson
  338.   patrick@chinet.chi.il.us / ptownson@eecs.nwu.edu / US Mail: 60690-1570
  339.   FIDO: 115/743 / AT&T Mail: 529-6378 (!ptownson) /  MCI Mail: 222-4956
  340.  
  341.  
  342.  
  343.  
  344. ==> trivia/eskimo.snow.p <==
  345. How many words do the Eskimo have for snow?
  346.  
  347. ==> trivia/eskimo.snow.s <==
  348. Couple of weeks ago, someone named D.K. Holm in the Boston Phoenix came up
  349. with the list, drawn from the Inupiat Eskimo Dictionary by Webster and
  350. Zibell, and from Thibert's English-Eskimo Eskimo-English Dictionary.
  351.  
  352. The words may remind you of generated passwords.
  353.  
  354. Eskimo      English                 Eskimo       English
  355. ---------------------------------+----------------------------
  356. apun        snow                 |  pukak        sugar snow
  357. apingaut    first snowfall       |  pokaktok     salt-like snow
  358. aput        spread-out snow      |  miulik       sleet
  359. kanik       frost                |  massak       snow mixed with water
  360. kanigruak   frost on a           |  auksalak     melting snow
  361.             living surface       |  aniuk        snow for melting
  362. ayak        snow on clothes      |               into water
  363. kannik      snowflake            |  akillukkak   soft snow
  364. nutagak     powder snow          |  milik        very soft snow
  365. aniu        packed snow          |  mitailak     soft snow covering an
  366. aniuvak     snowbank             |               opening in an ice floe
  367. natigvik    snowdrift            |  sillik       hard, crusty snow
  368. kimaugruk   snowdrift that       |  kiksrukak    glazed snow in a thaw
  369.             blocks something     |  mauya        snow that can be
  370. perksertok  drifting snow        |               broken through
  371. akelrorak   newly drifting snow  |  katiksunik   light snow
  372. mavsa       snowdrift overhead   |  katiksugnik  light snow deep enough
  373.             and about to fall    |               for walking
  374. kaiyuglak   rippled surface      |  apuuak       snow patch
  375.             of snow              |  sisuuk       avalanche
  376.  
  377.                     =*=                
  378.  
  379. ==> trivia/federal.reserve.p <==
  380. What is the pattern to this list:
  381. Boston, MA
  382. New York, NY
  383. Philadelphia, PA
  384. Cleveland, OH
  385. Richmond, VA
  386. Atlanta, GA
  387. Chicago, IL
  388. St. Louis, MO
  389. Minneapolis, MN
  390. Kansas City, MO
  391. Dallas, TX
  392. San Francisco, CA
  393.  
  394. ==> trivia/federal.reserve.s <==
  395. Each of the cities is a location for a Federal Reserve.  The cities
  396. are listed in alphabetical order based on the letter that represents each
  397. city on a dollar bill.
  398.  
  399. ==> trivia/jokes.self-referential.p <==
  400. What are some self-referential jokes?
  401.  
  402. ==> trivia/jokes.self-referential.s <==
  403. Q: What is alive, green, lives all over the world, and has seventeen legs?
  404. A: Grass.  I lied about the legs.
  405.  
  406. The two rules for success are:
  407. 1. Never tell them everything you know.
  408.  
  409. There are three kinds of people in the world: those who can count,
  410. and those who cannot.
  411.  
  412. Xref: bloom-picayune.mit.edu rec.models.rc:11696 news.answers:4468
  413. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!eff!sol.ctr.columbia.edu!spool.mu.edu!olivea!sun-barr!cs.utexas.edu!rutgers!cmcl2!arizona!cs.arizona.edu!sham
  414. From: sham@cs.arizona.edu
  415. Newsgroups: rec.models.rc,news.answers
  416. Subject: R/C Flying: Part 1 of 2/rec.models.rc FAQ
  417. Summary: A Beginner's Guide to Radio Controlled Flying
  418. Message-ID: <27674@optima.cs.arizona.edu>
  419. Date: 7 Dec 92 15:00:10 GMT
  420. Expires: 18 Jan 93 15:00:08 GMT
  421. Sender: news@cs.arizona.edu
  422. Reply-To: shamim@cs.arizona.edu
  423. Followup-To: rec.models.rc
  424. Organization: Dept. of Computer Science, University of Arizona
  425. Lines: 398
  426. Approved: news-answers-request@MIT.Edu
  427. Supersedes: <26083@optima.cs.arizona.edu>
  428.  
  429. Archive-name: RC-flying-FAQ/part1
  430. Last-modified: Aug. 24 1992
  431.  
  432. Greetings! This is the "Radio Control (R/C) Flying" help file, containing
  433. information of general interest to beginners. This file is posted regularly
  434. (every 28 days). I have tried to address all questions a beginner may have; if
  435. your question isn't here, please send it to me so I can include for the next
  436. person needing help.
  437.  
  438. Remember, no amount of FAQ reading can substitute for an instructor!
  439.  
  440. Shamim Mohamed
  441.  shamim@cs.arizona.edu
  442.  {uunet,cmcl2,noao..}!arizona!shamim
  443.  
  444. ============================== Cut Here ======================================
  445.  
  446. Authors:
  447.    W.A. - Wayne Angevine (angevine@badger.Colorado.EDU)
  448.    G.H. - Gary Hethcoat (gdh@dobbs.Eng.Sun.COM)
  449.    K.S. - Ken Summers (cs3871aa@triton.Unm.EDU)
  450.    S.M. - Shamim Mohamed (shamim@cs.Arizona.EDU)
  451.  
  452. Thanks to the following for comments and reviews:
  453.    Dave Burritt (drb@druwy.Att.COM)
  454.    Jeff Capehart (jdc@reef.Cis.Ufl.EDU)
  455.    Warren R Carithers (wrc@cs.Rit.EDU)
  456.    Carl Kalbfleisch (cwk@boomer.Ssc.GOV)
  457.  
  458.  
  459. Contents:
  460.  
  461. -Part 1
  462.    General           -- Organizations, radios                --  (S.M.)
  463.    Building          -- Kits, ARFs and Scratchbuilding       --  (S.M.)
  464.    The rec.models.rc ftp site
  465.                      -- to get plotfoil, airfoil data, circuit diagrams &c. --
  466.    Learning to Fly   -- Instructors, Pre-flight checks   -- (S.M.,G.H.)
  467.    Gliders           -- Launching, Staying Up, Recommendations and Costs
  468.                                                              --  (S.M.)
  469. -Part 2
  470.    Power (gas)                                           -- (G.H.,K.S.)
  471.    Electrics         -- Advantages, Equipment, Motor Specs., Recommendations --
  472.                                                              --  (W.A.)
  473.    Some Aerodynamics -- Speed, Turning, Stalls               --  (S.M.)
  474.  
  475.             ::::::  --  General  --  ::::::
  476.  
  477. >Should I start with powered flight, or with a glider?
  478.  
  479. Depends on preferences. I prefer gliders; that's where I started. The
  480. 2m (6 foot wingspan) class is a good size---large enough to be easy to
  481. fly but small enough for easy transport.  Gliders are easier to fly and
  482. more acceptable to the non-flying community---no noise or mess. Gliders
  483. are also cheaper (at least the trainers are) than powered planes---no
  484. fuel, batteries, starter etc. to worry about. Electric Flight is silent
  485. and clean so finds greater acceptance from neighbours etc. at the
  486. flying field, although some people feel that electrics are not
  487. robust/easy enough for beginners. There is a little more paraphernalia
  488. - you may need spare battery packs, but you can fly from smaller
  489. fields.  Power will let you fly longer, and your model doesn't need to
  490. be as light as with electric (so it's likely to be easier to build);
  491. however, you may have to go to a field far from populated areas. The
  492. type known as "40 size" are the most popular, about 50" wing span and a
  493. .40 cu. in. engine.
  494.  
  495. >Are there any organisations etc. I can join for information?
  496.  
  497. Ask at your local hobby shop---there may be a club in your neighbourhood.
  498. This is the best way to meet other pilots and find an instructor. Most
  499. pilots will more than glad to help you out.  If you can find a club, for
  500. an instructor, choose someone who is smooth in flying his/her plane and
  501. that you get along with. Remember, the ones best at flying (hangar or
  502. otherwise) may not always be the best instructors.
  503.  
  504. An organisation well worth joining is the Academy of Model Aeronautics
  505. (AMA).  They are the modellers' main voice where it matters---they
  506. liaison with the FCC, the FAA and Congress. It is an affiliate of the
  507. National Aeronautic Association (NAA) and is the US aeromodeling
  508. representative of the Federation Aeronautique Internationale (FAI).
  509. Membership in the AMA also gets you $1,000,000 of liability insurance,
  510. without which most fields will not allow you to fly. You also need to be
  511. an AMA member to participate in contests. Besides, you also get a
  512. magazine, `Model Aviation' which is rather good in itself, and it keeps
  513. you informed about the state of the hobby. So JOIN AMA!!! You can write
  514. to: Academy of Model Aeronautics, 1810 Samuel Morse Drive, Reston, VA
  515. 22090.  Membership is $40 per year (and well worth it). Their phone number
  516. is (703) 435 0750.
  517.  
  518. --- Radios:
  519.  
  520. >Since a trainer needs only 2 or 3 channels, should I get one of the cheap
  521. > radio systems?
  522.  
  523.    Don't bother with the cheap 2 or 3 channel sets---get a 4-ch system.
  524. It will come with NiCad rechargeable batteries and (usually) 3 servos;
  525. this is the most popular and most cost-effective kind of system. You can
  526. put the main pitch control (elevator) and the main turning control (in
  527. this case the rudder) on one stick, which is how most people (and thus
  528. most instructors) fly.  The cheaper systems come with the controls on
  529. separate sticks and you will have tough time finding someone willing to
  530. teach you with that setup.
  531.  
  532. >What is a "1991" system?
  533.  
  534. Strongly recommended!  A "1991" system is so named because in 1991 the
  535. radio control frequency regulations changed, which effectively made the
  536. "old-style" radios unusable.  The "old-style" radios have a separation
  537. between channels of 40 kHz.  In 1991, a separation of 10 kHz will be
  538. needed, this even though R/C channels will still be 20 kHz apart---because
  539. the FCC in their infinite wisdom have created channels for pagers and such
  540. _between_ the R/C channels, i.e. 10 kHz away from our frequencies. The
  541. Airtronics VG4 FM series is an inexpensive example, and is about $120 mail
  542. order.
  543.  
  544. If you can afford it, a system that has a "buddy box" is a really good
  545. idea. This is an arrangement where the instructor's radio is hooked up to
  546. yours, and he just has to release a button on his radio to take over
  547. control, rather than wrestling the radio from your grip. If you do this,
  548. be aware that you need to get the same (or compatible) radio as your
  549. instructor.
  550.  
  551.                :::::: --   Building  --  ::::::
  552.  
  553. >Should I start with plans and build my own plane from scratch, buy a kit
  554. >plane with wood and plans included, or go with one of those everything
  555. >included ready to fly planes.
  556.  
  557. There are a few good trainers that are ready to fly (or almost ready to
  558. fly, aka ARF). ARF planes are usually heavy and hard to repair. The new
  559. generation of ARF kits is all wood and better built but more expensive.
  560. The better kits have parts that are machine cut, the somewhat cheaper
  561. ones are die-cut. You'll probably have to so a little more work with a
  562. die-cut kit, mostly in separating parts and sanding them.
  563.  
  564. ARFs vs. kits: this is a matter of opinion, but more people seem to think
  565. that kits are a better idea for beginners. Pro kits: you get valuable
  566. building experience and are able to do repairs. Moreover trainers are
  567. good planes to learn to build as well as to fly, and most of them are
  568. cheaper than most ARFs. Pro ARFs: you can be flying sooner, and you have
  569. less emotional investment in the plane so when you crash you don't feel
  570. as bad.
  571. However: regardless of what you chose, your chances of a painless
  572. education are greatly improved if you have an instructor---both for
  573. building and for flying.
  574.  
  575. Remember, the plane you buy doesn't have to be good looking, it just has
  576. to teach you to fly! Many pilots after building a beautiful model are so
  577. afraid to crash that they never fly. Far better to have a scummy looking
  578. plane that you don't mind crashing again and again and learning to fly
  579. than to have a slick model that you can only mount on a stand! After you
  580. are proficient you'll have plenty of time to build good-looking planes.
  581.  
  582. It seems to be the general consensus that there are enough decent kits
  583. around that building from scratch is not really worth the effort unless
  584. you are into design or obscure scale models. If this is what you want,
  585. you may find the "plotfoil" program (available from the rec.models.rc ftp
  586. site and from comp.sources.misc archives) useful.
  587.  
  588. Covering: for now, stay with Monokote. It's reasonably easy to apply, not
  589. too heavy, and fuelproof. (The label gives directions.)
  590.  
  591.            ::::::  -- The rec.models.rc ftp site  -- ::::::
  592.  
  593. Nur Iskander Taib <ntaib@silver.ucs.indiana.edu> has been kind enough to
  594. establish an ftp site for the use of the rec.models.rc community. Use
  595. anonymous ftp to log in to "bigwig.geology.indiana.edu" and go to the
  596. directory called "models" . You will find subdirectories called
  597. "airfoil", "faq" and "circuits".  These contain, respectively:
  598.    plotfoil---a program to plot airfoil sections on PostScript printers.
  599.               It can also draw spars and sheeting allowances, and can
  600.               plot airfoils of arbitrary chords (on multiple sheets). It
  601.               also includes a library of airfoil data, including many
  602.               from Soartech 8.
  603.    faq     ---contains this FAQ file.
  604.    circuits---circuit diagrams for modelling applications, including
  605.               "smart" glow-plug drivers.
  606.  
  607. Other FTP sources:
  608.    Sometimes people have trouble getting to bigwig. Plotfoil is also available
  609. from comp.sources.misc, which is archived at many sites, including sites in
  610. France and Australia. Get Volume 31, parts 28-30 (archive name: plotfoil).
  611. Contact your sysadmin, or read the periodic posting in comp.sources.misc for
  612. more information on how to reach the nearest one.
  613.    This FAQ is available from pit-manager.mit.edu, the news.answers archive. It
  614. is in /pub/usenet/news.answers/RC-flying-FAQ/part*.
  615.    These two sources are guaranteed to be up-to-date, since it is all done
  616. automagically.
  617.  
  618.              ::::::  -- Learning to Fly  -- ::::::
  619.  
  620. The most important point, one which cannot be overstressed:
  621.    *GET*AN*INSTRUCTOR!*
  622.  
  623. Here's what one beginner had to say:
  624.  
  625.  > I just started doing RC planes myself. In fact, yesterday I flew my
  626.  > plane for the first time (with an instructor). He took off for me,
  627.  > got the plane at a real high altitude and then gave me the controls.
  628.  > I did OK (in my opinion) but did have to give him the controls twice
  629.  > in order to get the plane into stable flight again. I figured the
  630.  > controls would be sensitive but I did not realize HOW SENSITIVE. I
  631.  > only had to move them about 1/8 of an inch to turn.
  632.  >
  633.  > There is no way I could have landed the thing without crashing.
  634.  >
  635.  > By the way I am a full scale pilot. That did not help me at all.
  636.  > In fact I think it hurt. I didn't realize how much I use the "feel
  637.  > of the plane" when flying a real one. Obviously you have no feel
  638.  > whatsoever with RC planes.
  639.  
  640. You probably won't have any really bad (i.e.  irreparable) crashes. (Of
  641. course, you'll still crash.) Also make _sure_ you have your instructor
  642. check your plane thoroughly _before_ the first flight---as someone said,
  643. "it is much better to go home with no flights and one airplane than go
  644. home with one half a flight and many little pieces." This is really,
  645. *REALLY* important.
  646.  
  647. --- Pre-flight Checklist ---
  648.  
  649. When your model is ready to fly, make sure it is thouroghly checked over by
  650. someone who has done alot of building and flying. When I say thouroughly,
  651. I don't mean just picking it up and checking the balance and thumping the
  652. tires a few times. Every detail of setup and connection should be gone over
  653. in detail. If your instructor doesn't want to spend this much time
  654. checking your plane, find a new instructor.
  655.  
  656. The importance of this pre-flight check cannot be overemphasized! Many planes
  657. are lost due to a simple oversight that could have been caught by a pre-flight!
  658.  
  659. Here's a checklist:
  660.  
  661.  _Before_the_first_flight:_
  662.  
  663. 1) Weight
  664.        ---is the model too heavy?
  665.  
  666. 2) Balance
  667.        ---Is the center of gravity (fore and aft) within the range shown
  668.           on the plans?
  669.        ---Is the model balanced side to side? (right and left wings of
  670.           equal weight)
  671.  
  672. 3) Alignment
  673.        ---Are all flying surfaces at the proper angle relative to each other?
  674.        ---Are there any twists in the wings? (other than designed-in washin
  675.           or washout)
  676.  
  677. 4) Control surfaces
  678.        ---Are they all *securely* attached? (i.e. hinges glued, not just
  679.           pushed in)
  680.        ---Are the control throws in the proper direction *and* amount?
  681.           (usually indicated in the plans)
  682.  
  683. 5) Control linkage
  684.        ---Have all linkages been checked to make sure they are secure?
  685.        ---Are all snap-links closed?
  686.        ---Have snap-links been used on the servo end? (They are
  687.           more likely to come loose when used on the servo)
  688.        ---Have all screws been attached to servo horns?
  689.  
  690. 6) Engine and fuel (if applicable)
  691.        ---Has the engine been thoroughly tested?
  692.        ---Are all engine screws tight?
  693.        ---Has the engine been run up at full throttle with
  694.           the plane's nose straight up in the air? (To make sure it
  695.           won't stall when full power is applied on climbout)
  696.        ---Is the fuel tank level with the flying attitude of the plane?
  697.        ---Is the carburetor at the same height (not above) as the fuel tank?
  698.        ---Is the fuel tank klunk in the proper position and moving freely?
  699.  
  700. 7) Radio
  701.        ---Has a full range check been performed?
  702.        ---Has the flight pack charge been checked with a voltmeter?
  703.        ---Have the receiver and battery been protected from vibration
  704.           and shock?
  705.        ---Is the receiver's antenna fully extended and not placed within a
  706.           fuselage with any sort of metallic covering?
  707.  
  708. _After_repair:_
  709.  
  710. The checklist should be gone through again, with particular attention to
  711. the areas that were worked on or repaired.
  712.